Arrays
An example
Let us consider an array of social security
numbers. Let picture of the disk represents
each of the numbers:
<data type> <array name>[<size>];
int SSN[5];
SSN[1] = 345;
0
1
2
3
4
0
345
0
0
0